Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632708 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/210 - TempWizard

indexsamp.html cody/swapnilsparsh/30DaysOfJavaScript/210 - TempWizard/indexsamp.html
290 Views
0 Comments
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div><h1>TEMPERATURE CONVERTER</h1></div>
<div>
<div>
style.css cody/swapnilsparsh/30DaysOfJavaScript/210 - TempWizard/style.css
96 Views
0 Comments
body {
font-family: Arial, sans-serif;
text-align: center;
margin: 0;
padding: 0;
background-color: #f0f0f0;
}

script.js cody/swapnilsparsh/30DaysOfJavaScript/210 - TempWizard/script.js
168 Views
0 Comments
let celsius =
document.getElementById('celsius');
let fahrenheit =
document.getElementById('fahrenheit');
let kelvin =
document.getElementById('kelvin');
celsius.oninput = function () {
let f = (parseFloat(celsius.value) * 9) / 5 + 32;